home *** CD-ROM | disk | FTP | other *** search
/ The Net Power 1996 March / Net Power 03 (March 1996).iso / prodigy / demo / dylan.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  1995-10-24  |  344 b   |  10 lines

  1. on enterFrame
  2.   global gCuesForVoice, gLabelsForVoiceCues, gCountOfCues, gPreTicksForCue, gNextCueIndex
  3.   set currentTimerTick to the timer
  4.   if gNextCueIndex <= gCountOfCues then
  5.     if currentTimerTick >= (getAt(gCuesForVoice, gNextCueIndex) - gPreTicksForCue) then
  6.       go(getAt(gLabelsForVoiceCues, gNextCueIndex))
  7.     end if
  8.   end if
  9. end
  10.